home *** CD-ROM | disk | FTP | other *** search
/ PC-SIG: World of Education / PC-SiG's World of Education.iso / run / 2602 / tracenum.hlp < prev    next >
Encoding:
Text File  |  1989-02-03  |  814 b   |  19 lines

  1. TRACENUM = expr;             Enable/disable trace numbers
  2.  
  3. TRACENUM enables and disables trace numbering on plots.  When
  4. symbols are used to identify traces on a plot, the trace numbers
  5. are frequently superfluous and may add too much clutter to the
  6. plot.  In such a case the trace numbers may be turned off.
  7.  
  8. Trace numbers can be applied to one trace but not to another by
  9. grouping the PLOT and TRACENUM statements.  For example,
  10.  
  11.       TRACENUM=OFF & PLOT(x*x) &
  12.       TRACENUM=ON & PLOT(x*x*x + 2*x*x + 3);
  13.  
  14. Even though a trace may have no trace number applied to it, the
  15. trace still reserves its own number, and consequently, there may be
  16. gaps in the trace numbers if at least one trace has had its
  17. numbering disabled.  In the above example the trace that is
  18. numbered is given trace number 2.
  19.